home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
THINKC
/
4_0
/
NEWTEXTF
/
SOURCE_C
/
CLENGTH.C
next >
Wrap
C/C++ Source or Header
|
1990-06-24
|
152b
|
11 lines
#include "MyLibrary.h"
long CLength (char *cstr)
{long length;
length = 0L;
while (*cstr)
{++length;
++cstr;}
return (length);}